#Do my Coding Homework
Explore tagged Tumblr posts
gretaghost · 29 days ago
Note
Could you Draw Shadow with Maria? Please
Tumblr media
Sure. Here you go
70 notes · View notes
sofieflee · 3 days ago
Text
LETS GO LESBIANS
Tumblr media
Okay okay so what if I really like drawing Yuma with long hair… so like I’m gonna draw more of them. Also because pretty girls.
Oh and there may be a canon feminine WDO uniform design, but actually I like this design better soooo.
51 notes · View notes
thepandalion · 21 days ago
Text
"its ok, you don't need to know verbs, you're not a linguist, you're a dog" -me, to my dog, right now
#explaining homework to the dog#in my defense it was REALLY COOL homework#like the question had predicates and COM combine to explain why a sentence is fucked up#thats so cool?? what the fuck#like heck yeah “who did he believe the father of will go to the meeting” fuck them up ECM#(the other sentence was like. “who did he convince the father of to go to the meeting” or somthing idk. object control tho)#which. ECM had the “the father of t” be the specIP which COM meant was non grammatical#and on OC it was a PRO thats indexed like it instead. meaning the movement wasn't from there#I even put the fucking. type of island this is. it's SC island. Im so cool you guys and also I fucking hate this#syntax who I only know BURNING HATRED/pos#anyways remind me when I'm doing the syntax seminar next semester that I always have that time around week 7 when I hate syntax#and that I'll get over it and do something epic about sociolingyistic binding phi stuff maybe#like about why all the examples we use are like “mary liked himself” like. why do we assyme marys pronouns. maybe theyre a he/she/they#what part of being a syntactician makes me part of the pronouns police#for the record also this is NOT what I want to research in general but also like#I feel like if anything would get me attention from the syntax folk here it'd be this#bc my morphology things feel. idk. kinda in-between on syntax and semantics. like bc I wanna do lexical meaning of morphemes#which. is not something people here would particularly be looking to investigate. right now#but ooohh Im gonna go learn soo much morpheme stuff#and do the math and coding and experiments. and become a professor and go teach morphology#like pleaseplease you guys I wanna be the morphology teacher at tau soo bad#running silly morpheme building on borrowed words experiments. truly this is using All the things#because borrowed words interacting with morphology is very phonological of me. but also buildings is a syntax/semantics thing#aaaaa I don't knowwww this is such a broad subject and I cant find anything on ittt#linguistics posting
11 notes · View notes
lily-claw · 6 months ago
Text
My toxic trait is that I can write 10k word analysis about bakugo and midoriya in max 1,5 hour but can not write analyses about some people in 2 weeks bc I don't feel like Im professional enough to write that for psychology class homework
14 notes · View notes
housemarcellus · 6 months ago
Text
I need to fucking CHILL, the final essay is SUBMITTED, it is DONE; I am DONE. Why has the relief not set in yet??
13 notes · View notes
iamnocturnal0 · 2 years ago
Text
Tumblr media
i finally found it. this *thing* has been playing non-stop in my head...i love him so much /p
133 notes · View notes
clumsypuppy · 1 year ago
Text
i wanna post my skip to loafer art but i cant do it knowing ppl are gonna put it on tiktok and pinterest bc itd be like. bringing an invasive species ykwim
#my meds just kicked in so im feeling talkative but truly idk how to explain it#its like. with anything else id be more than happy to introduce it to ppl like monkie kid and mp100. witch hat maybe but its personal to me#but skip to loafer is special to me. and i feel bad for saying this bc other ppl do deserve to watch smth they will enjoy#hell the reason i got into it was bc my friend was kind enough to lend me her copy and i got hooked#its so ironic im saying this esp given how insecure i am abt depicting characters wrong. but i really dont want to look thru the tags#and see them on a 'can i copy your homework' tier list. or ppl getting mad abt why egashira mitsumi and shima cant just be a throuple#its just!! i wont stop you if thats how you like to engage with the show or how you interpret it bc ill just ignore it and leave u alone!!#and theres no objective wrong way of doing it!! and i know that interacting with the work is what forms a community after all!!#but keeping it tight knit is just easier for me bc nobody has to worry abt making each other laugh and we can enjoy it for what it is#fully aware im saying this as someone whos drawn monkie kid art with text post memes and owl house draw the squad templates#but at the same time i just. dont want to explain myself or give ppl reasons why shima and mitsumi are ace coded just bc it 'feels right'#fandom is a communal thing and it feels so hypocritical thinking this. too many conflictng thoughts that idk what to act on#yapping
43 notes · View notes
amediocregamer · 4 months ago
Text
Alright, so!!! Yet another day where I don't make progress on my GameMaker game that I really want to do and have promised Tumbrk to do, but!!!! heres what I did do instead:
•basically torn out the movement and collision system that I cobbled from two Reddit posts
•add a facing system to detect which direction the player faces based on their last movements
•redid a bunch of sprites including these cute walking/waddling sprites and technically changing the player design from some purple cube with grey bezels to an old, floating CRR monitor
•have yet to literally do anything related to the cube pushing mechanic that the game is meant to be based on
technically progress!!!
5 notes · View notes
mistyechoes · 2 months ago
Text
im completely running out of motivation for schoolwork
3 notes · View notes
spark-hearts2 · 4 months ago
Text
I AM SO GOOD AT CIRCUIT BUILDING AND PROGRAMMING RAAAAA
C++ script under cut :3
int UpDown;       //value for the Y direction of controller
int LeftRight;    //value for the x direction of controller
int LR_neutral;   //value for the 0 position in the y direction of controller
int UD_neutral;   //value for the 0 position in the x direction of controller
int Bprev;        //value for button edge detection
int Bcurr;        //value for button edge detection
int R;
int Y;
int G;
int B;
void setup() {
  Serial.begin(9600);  //begin communication
  pinMode(A2,  INPUT); //button press detection
  pinMode(4, OUTPUT); //set pin 4 to power the Red LED
  pinMode(5, OUTPUT); //set pin 5 to power the Yellow LED
  pinMode(6, OUTPUT); //set pin 6 to power the Blue LED
  pinMode(7, OUTPUT); //set pin 7 to power the Green LED
  LR_neutral = analogRead(A1); //set zero position of controller
  UD_neutral = analogRead(A0); //set zero position of controller
  //WARNING!!! YOU CAN NOT TOUCH CONTROLER WHEN INITALIZATION HAPPENS!!!! WILL MESS CONTROLLER UP
}
void loop() {
LeftRight = analogRead(A0);  //read X position of controller
UpDown = analogRead(A1);     //read y position of controller
Bprev = Bcurr;               //set current button state to previous state
Bcurr = analogRead(A2);     //set current button state equal to actual button state
if ((Bprev == 0) && (Bcurr > 0)){
  //turns all LED on
  digitalWrite(4,HIGH);
  digitalWrite(5,HIGH);
  digitalWrite(6,HIGH);
  digitalWrite (7,HIGH);
  delay(100); //wait
  //turns all LED off
  digitalWrite (4,LOW);
  digitalWrite (5,LOW);
  digitalWrite (6,LOW);
  digitalWrite (7,LOW);
}
if (UpDown >= UD_neutral) {  // checks if controller is up
  B = 0; //if up turns blue LED off
  R = map(UpDown, UD_neutral,1023,0,255);  //if up turns red LED on
}
else {
  R = 0;  //if down turns red LED off
  B = map(UpDown, UD_neutral,0,0,255); //if down turns blue LED on
}
if (LeftRight >= LR_neutral) {  // checks if controller is right
  G = 0;  //if right turns green LED off
  Y = map(LeftRight, LR_neutral, 1023,0,255); //if right turns yellow LED on
}
else {
  Y = 0; //if left turns yellow off
  G = map(LeftRight, LR_neutral, 0,0,255); //if left turns green on
}
//writes values to LEDs
analogWrite(4,R);
analogWrite(5,Y);
analogWrite(6,B);
analogWrite (7,G);
}
5 notes · View notes
therainistumbling · 2 days ago
Text
WHAT THE FUCK DO YOU MEAN C++ DOESN'T HAVE A SPLIT FUNCTION
3 notes · View notes
savage-rhi · 3 months ago
Text
3am magenta
3 notes · View notes
maniiix · 3 months ago
Text
I SWEAR ILL POST MORE AT SOME POINT. i have school 😔 i busy rn...anyways heres a house i made in maya for class
Tumblr media Tumblr media Tumblr media
This is the second time ive done 3d modeling, only using primitives and vectors and stuff though 🤭👍
3 notes · View notes
kaiserouo · 2 months ago
Text
Also probably no art before wednesday and if there are its probably because im in my lab and i reached my attention span so i got into a toilet and draw on my phone for 15 minutes
Or ill just be fucked in wednesday's meeting what do i know
#idk if im just being a strawberry or what i just cant work in a long attention span. especially if its not writing code#wait do people know about strawberry stuff#search “strawberry generation” on wiki because wow i do feel like a strawberry now#kinda miss my college times. homeworks are easy. projects are like whatever#and you have time to do silly stuff like learning how to draw bloodhound and open a public account on tumblr#good times#i always feel that if i dont get good at drawing now ill never have the chance after getting a job#well... at least good enough that i dont throw up when i see my art from just one week ago or something#im glad that i kickstart this entire thing early enough. like during 3rd~4th year of college after i get all required courses done#if i started any later im probably not gonna keep on drawing. id rather spend all my free time playing games or doing nerd stuff ig#im just in my ramble-before-sleep state rn btw dont mind me#im just glad i have something else to do / somewhere else to go when irl stuff fucks me up#and its not just about playing games and scrolling through twitter and tumblr with a lurker account 24/7#really makes you wonder how life trajectory forms#and if you think you read this before its because i yap about the same feeling every few months#but the feeling is real. i still cant believe i have a public account and a place to stay on the internet#although its mostly me pushing art out because im still the introverted type and really cant interact with people comfortably#i can yap because im effectively talking to thin air btw. its different#okay thats enough yapping about me i should probably stop#ramble
3 notes · View notes
zukaiaz-x · 8 months ago
Text
Doing homework that I've had a month to work on in one day because it's due tomorrow >>>>
Tumblr media
Coding is not my strong suit
4 notes · View notes
crowealtius · 4 months ago
Text
bitch what the fuck is a bilateral pleural effusion. i'll kill you
3 notes · View notes